home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
sal100
/
bubble.src
< prev
next >
Wrap
Text File
|
1993-05-27
|
176b
|
11 lines
void bubble()
{
int a;
int b;
for(a=1; a < ARRAYSIZE; a++)
for(b=ARRAYSIZE-1, b >= a; b--)
if(Vektor[b-1] > Vektor[b])
SwapNumbers(b-1,b);
}